Overview

This section describes the available REST endpoint for retrieving personal property registry information.

Using a UUID obtained from a previous search, this service returns summary information for persons/companies in the personal property registry. The response format can be controlled using optional query parameters, supporting OIO XML, XHTML, and TMV XHTML formats.

Endpoints

PersonSummarisk

Endpoint URL: personbog/{uuid}

Method

GET

Description

Retrieve summary information for a person/company in the personal property registry using their UUID.

Input

Path parameter:

  • uuid

Optional query parameters:

  • xhtml=true - returns response as XHTML

  • tmvXhtml=true - returns response as TMV XHTML with modified title

  • If neither provided, returns as OIO XML (default)

Output

Personal property registry data in the requested format (OIO XML, XHTML, or TMV XHTML).

The formatting of XHTML and TMV XHTML responses is not documented in detail and may change without notice.

Error handling

Standard HTTP error codes for invalid input or lack of access

Interaction pattern

Query response

Example request:

GET /personbog/99e5272d-396b-4e38-b033-5ea9098f456a?xhtml=false&tmvxhtml=false HTTP/1.1
host: nc-dev-xml-api.tinglysning.dk
accept: */*

SoegPersonbog

Endpoint URL: soegpersonbog

Method

GET

Description

Search for persons/companies in the personal property registry using name and CPR number.

Input

Query parameters:

  • navn - Name (required)

  • cpr - CPR number (required)

  • cvr - CVR number (optional)

  • nodoks - Boolean flag to allow results without documents (optional)

Output

JSON response containing matching persons/companies with basic information (incl. uuid).

Error handling

  • 429 Too Many Requests - if rate limit is exceeded

  • Standard HTTP error codes for invalid input or lack of access

Interaction pattern

Query response

Example request:

GET /soegpersonbog/99e5272d-396b-4e38-b033-5ea9098f456a?navn=John%20Doe&cpr=1234567890&cvr=&nodoks=false HTTP/1.1

SoegPersonbogCvr

Endpoint URL: soegpersonbogcvr

Method

GET

Description

Search for persons/companies in the personal property registry using CVR number or name with/without date of birth.

Input

Query parameters (mutually exclusive combinations):

  • cvr only - Search by CVR number

  • navn + fdato - Search by name and date of birth

  • navn + udenfdato=true - Search by name without date of birth

Output

JSON response containing matching persons/companies with basic information (incl. uuid).

Error handling

  • Standard HTTP error codes for invalid input or lack of access

Interaction pattern

Query response

Example request:

GET /soegpersonbogcvr/99e5272d-396b-4e38-b033-5ea9098f456a?cvr=15231599&navn=John%20Doe&fdato=01.01.1970&udenfdato=false HTTP/1.1